SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 64483: The EXPORT procedure does not write out all the variables listed for the KEEP= data set option when the PUTNAMES=NO statement is included

DetailsAboutRate It

PROC EXPORT does not write out all the variables listed for the KEEP= data set option when the PUTNAMES=NO statement is also used. For example, two variables are listed for the KEEP= data set option, but only one variable is written to the file. Here is a syntax example that can cause this issue; in this case, only the AGE variable is written to the class.csv file:

proc export data=sashelp.class(keep=name age)
            outfile='c:\temp\class.csv' dbms=csv replace;
            putnames=no;
run;

The workaround is to use the KEEP= data set option in a DATA step prior to PROC EXPORT. Then use PROC EXPORT with the PUTNAMES=NO statement to create an external file that does not include variable names as column names in the first row. Here is the syntax to use for the workaround:

data class;
   set sashelp.class (keep=name age);
run;
proc export data=class
            outfile='c:\temp\class2.csv' dbms=csv replace;
            putnames=no;
run;

A fix for this issue is planned for a future software release.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemBase SASMicrosoft® Windows® for x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8 Enterprise 32-bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8 Enterprise x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8 Pro 32-bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8 Pro x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Enterprise 32-bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Enterprise x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Pro 32-bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Pro x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows 109.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 Datacenter9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 R2 Datacenter9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 R2 Std9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 Std9.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 20169.4_M69.4_M69.4 TS1M69.4 TS1M7
Microsoft Windows Server 20199.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Enterprise 32 bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Enterprise x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Home Premium 32 bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Home Premium x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Professional 32 bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Professional x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Ultimate 32 bit9.4_M69.4_M69.4 TS1M69.4 TS1M7
Windows 7 Ultimate x649.4_M69.4_M69.4 TS1M69.4 TS1M7
64-bit Enabled AIX9.4_M69.4_M69.4 TS1M69.4 TS1M7
64-bit Enabled Solaris9.4_M69.4_M69.4 TS1M69.4 TS1M7
HP-UX IPF9.4_M69.4_M69.4 TS1M69.4 TS1M7
Linux for x649.4_M69.4_M69.4 TS1M69.4 TS1M7
Solaris for x649.4_M69.4_M69.4 TS1M69.4 TS1M7
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.